home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
dev
/
obero
/
oberon_lib.lha
/
oberon-a
/
source1.lha
/
source
/
Amiga
/
MathLibrary.mod
< prev
next >
Wrap
Text File
|
1994-08-08
|
2KB
|
62 lines
(**************************************************************************
$RCSfile: MathLibrary.mod $
Description: Interface to mathieee*.library bases
Created by: fjc (Frank Copeland)
$Revision: 3.2 $
$Author: fjc $
$Date: 1994/08/08 00:45:56 $
$VER: mathlibrary.h 1.6 (13.7.90)
Includes Release 40.15
(C) Copyright 1985-1993 Commodore-Amiga, Inc.
All Rights Reserved
Oberon-A interface Copyright © 1994, Frank Copeland.
This file is part of the Oberon-A Interface.
See Oberon-A.doc for conditions of use and distribution.
***************************************************************************)
MODULE MathLibrary;
(*
** $C- CaseChk $I- IndexChk $L+ LongAdr $N- NilChk
** $P- PortableCode $R- RangeChk $S- StackChk $T- TypeChk
** $V- OvflChk $Z- ZeroVars
*)
IMPORT E := Exec;
(*
**
** Data structure returned by OpenLibrary of:
** mathieeedoubbas.library,mathieeedoubtrans.library
** mathieeesingbas.library,mathieeesingtrans.library
**
*)
TYPE
MathIEEEBasePtr * = CPOINTER TO MathIEEEBase;
MathIEEEBase * = RECORD (E.Library)
reserved : ARRAY 18 OF CHAR;
taskOpenLib * : PROCEDURE () : LONGINT;
taskCloseLib * : PROCEDURE () : LONGINT;
(* This structure may be extended in the future *)
END; (* MathIEEEBase *)
(*
* Math resources may need to know when a program opens or closes this
* library. The functions TaskOpenLib and TaskCloseLib are called when
* a task opens or closes this library. They are initialized to point to
* local initialization pertaining to 68881 stuff if 68881 resources
* are found. To override the default the vendor must provide appropriate
* hooks in the MathIEEEResource. If specified, these will be called
* when the library initializes.
*)
END MathLibrary.